home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Mac Game Programming Gurus
/
TricksOfTheMacGameProgrammingGurus.iso
/
More Source
/
C⁄C++
/
Chess++ 3.0.1
/
source
/
Chess.cp
< prev
next >
Wrap
Text File
|
1993-05-26
|
511b
|
30 lines
////////////
//
// Chess.cp
//
// This is the main entry point for the Chess++ application.
//
// Copyright © 1993 Steven J. Bushell. All rights reserved.
//
////////////
#include "CChessApp.h"
#include <TCLUtilities.h>
void main()
{
CChessApp *ChessApp;
// There's inherently a lot of recursion when searching for
// good moves in a chess application, so we bump up the stack
SetMinimumStack(64*1024);
ChessApp = new CChessApp;
ChessApp->IChessApp();
ChessApp->Run();
ChessApp->Exit();
}